home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 101 / CD-ROM 101.iso / compl / maya5ple / Install_MayaPLE5_English.exe / Maya / Data1.cab / imageFormats.mel < prev    next >
Encoding:
Text File  |  2003-07-17  |  2.6 KB  |  76 lines

  1. // Copyright (C) 1997-2002 Alias|Wavefront,
  2. // a division of Silicon Graphics Limited.
  3. //
  4. // The information in this file is provided for the exclusive use of the
  5. // licensees of Alias|Wavefront.  Such users have the right to use, modify,
  6. // and incorporate this code into other products for purposes authorized
  7. // by the Alias|Wavefront license agreement, without fee.
  8. //
  9. // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  10. // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  11. // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  12. // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  13. // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  14. // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. // PERFORMANCE OF THIS SOFTWARE.
  16. //
  17. //
  18. //  Alias|Wavefront Script File
  19. //  MODIFY THIS AT YOUR OWN RISK
  20. //
  21. //  Creation Date:  7 May 1997
  22. //  Author:         rh
  23. //
  24. //  Description:
  25. //      Image format data. Ascii file which the user can modify
  26. //        in order to add new image formats.
  27. //
  28. //    Contents
  29. //        gImageFormatData[]    List of image formats.
  30. //
  31.  
  32.  
  33.  
  34. global string    $gImageFormatData[] = 
  35. {
  36. //  name              width height aspect ratio
  37. // -----------------------------------------------
  38.     "320x240            320  240 1.333",
  39.     "640x480            640  480 1.333",
  40.     "1k_Square         1024 1024 1.000",
  41.     "2k_Square         2048 2048 1.000",
  42.     "3k_Square         3072 3072 1.000",
  43.     "4k_Square         4096 4096 1.000",
  44.     "CCIR_PAL/Quantel_PAL 720  576 1.333",
  45.     "CCIR_601/Quantel_NTSC 720  486 1.333",
  46.     "Full_1024         1024  768 1.333",
  47.     "Full_1280/Screen  1280 1024 1.333",
  48.     "HD_720            1280  720 1.777",
  49.     "HD_1080           1920 1080 1.777",
  50.     "NTSC_4d            646  485 1.333",
  51.     "PAL_768            768  576 1.333",
  52.     "PAL_780            780  576 1.333",
  53.     "Targa_486_(tga)    512  486 1.333",
  54.     "Targa_NTSC_(tga)   512  482 1.333",
  55.     "Targa_PAL_(tga)    512  576 1.333"
  56. };
  57.  
  58. // PLE caps render resolution by kPLEMaxX & kPLEMaxY
  59. global string    $gPLEImageFormatData[] = 
  60. {
  61. //  name              width height aspect ratio
  62. // -----------------------------------------------
  63.     "320x240            320  240 1.333",
  64.     "640x480            640  480 1.333",
  65.     "CCIR_PAL/Quantel_PAL 720  576 1.333",
  66.     "CCIR_601/Quantel_NTSC 720  486 1.333",
  67.     "Full_1024         1024  768 1.333",
  68.     "NTSC_4d            646  485 1.333",
  69.     "PAL_768            768  576 1.333",
  70.     "PAL_780            780  576 1.333",
  71.     "Targa_486_(tga)    512  486 1.333",
  72.     "Targa_NTSC_(tga)   512  482 1.333",
  73.     "Targa_PAL_(tga)    512  576 1.333"
  74. };
  75.  
  76.